home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / FromTheMag / JW FLV MEDIA PLAYER 4.2 / mediaplayer.exe / player.swf / scripts / com / jeroenwijering / events / PlayerEvent.as < prev    next >
Text File  |  2008-11-04  |  361b  |  17 lines

  1. package com.jeroenwijering.events
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public class PlayerEvent extends Event
  6.    {
  7.       
  8.       public static var READY:String = "READY";
  9.        
  10.       
  11.       public function PlayerEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
  12.       {
  13.          super(param1,param2,param3);
  14.       }
  15.    }
  16. }
  17.